home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 20
/
Cream of the Crop 20 (Terry Blount) (1996).iso
/
os2
/
cpumt10a.zip
/
CPU_INST.CMD
next >
Wrap
OS/2 REXX Batch file
|
1996-06-21
|
929b
|
41 lines
/* CPUMeter installation program */
/* copyright (c) 96 by Christof Pastors */
/* */
/* This program simply creates a CPUMEter-object on your desktop */
'@Echo off'
'cls'
call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
call SysLoadFuncs
say ''
say 'This program creates a CPUMeter object on your desktop'
say ''
call charout ,' Press [Enter] to continue...'
dummy = ''
do until dummy = '0d'x
dummy = SysGetKey('NOECHO')
end
call charout ,'0d1b'x'[K'
curdir = directory()
rc = stream('cpumeter.exe','c','query exists')
if rc \= '' then
do
title = "CPUMeter"
classname = 'WPProgram'
location = '<WP_DESKTOP>'
setup = 'OBJECTID=<CPUMeter>;EXENAME='rc';STARTUPDIR='curdir
call SysCreateObject classname,title,location,setup,u
end